home *** CD-ROM | disk | FTP | other *** search
- library VcsDemo;
-
-
- uses
- WinTypes,
- VcsIntf,
- ToolIntf,
- Vcsmain in 'VCSMAIN.PAS',
- Files in 'FILES.PAS' {FilesDlg},
- About in 'ABOUT.PAS' {AboutBox};
-
-
- {$R *.RES}
-
- function InitVCS(VCSInterface: TIToolServices): TIVCSClient; export;
- begin
- Result := TMyVCSClient.Create;
- TMyVCSClient(Result).Init(VCSInterface);
- end;
-
- exports
- InitVCS name VCSManagerEntryPoint resident;
-
- begin
- end.
-
-